+2008-07-23 Matthias Clasen <mclasen@redhat.com>
+
+ Bug 543915 – "Sole completion" translation issue
+
+ * gtk/gtkfilechooserentry.c: Add translator hints to a
+ bunch of strings. Requested by Andre Klapper
+
2008-07-23 Matthias Clasen <mclasen@redhat.com>
Bug 544265 – GDK assumes XFIXES extension
case NO_MATCH:
beep (chooser_entry);
+ /* translators: this text is shown when there are no completions
+ * for something the user typed in a file chooser entry
+ */
pop_up_completion_feedback (chooser_entry, _("No match"));
break;
break;
case NOTHING_INSERTED_UNIQUE:
+ /* translators: this text is shown when there is exactly one completion
+ * for something the user typed in a file chooser entry
+ */
pop_up_completion_feedback (chooser_entry, _("Sole completion"));
break;
break;
case COMPLETE_BUT_NOT_UNIQUE:
+ /* translators: this text is shown when the text in a file chooser
+ * entry is a complete filename, but could be continued to find
+ * a longer match
+ */
pop_up_completion_feedback (chooser_entry, _("Complete, but not unique"));
break;
{
chooser_entry->load_complete_action = LOAD_COMPLETE_EXPLICIT_COMPLETION;
+ /* translators: this text is shown while the system is searching
+ * for possible completions for text in a file chooser entry
+ */
pop_up_completion_feedback (chooser_entry, _("Completing..."));
}
}